-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "A good enough starter kit for a React project, I guess.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "./node_modules/webpack/bin/webpack.js",
"test": "jest",
"eslint": "./node_modules/eslint/bin/eslint.js ./lib/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/turingschool-examples/react-starter-kit.git"
},
"jest": {
"setupFiles": [
"./__mocks__/storageMock.js",
"./__mocks__/fetchMock.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"author": "Steve Kinney",
"license": "MIT",
"bugs": {
"url": "https://github.com/turingschool-examples/react-starter-kit/issues"
},
"homepage": "https://github.com/turingschool-examples/react-starter-kit",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.4",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.8.2",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"file-loader": "^0.11.2",
"jest": "^20.0.4",
"jest-fetch-mock": "^1.5.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.4.2",
"prop-types": "^15.6.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-test-renderer": "^15.5.4",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"@jsweet314/Prefix-Trie": "git+https://github.com/JSweet314/prefix-trie.git",
"moment": "^2.22.1"
}
}