This repository has been archived by the owner on Aug 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.9 KB
/
package.json
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
71
72
73
74
75
76
{
"name": "focus-application",
"version": "3.2.5",
"files": [
"behaviours",
"confirm",
"debug",
"fetch",
"header",
"layout",
"messages",
"session",
"translation",
"style",
"role",
"util",
"store.js",
"App.js",
"index.js",
"header.js",
"logo.svg",
"main.js",
"url-builder.js"
],
"main": "main.js",
"peerDependencies": {
"i18next": ">= 4.1.0",
"lodash": ">= 4.15.0",
"material-design-lite": ">= 1.2.1",
"react": ">= 15.3.1",
"react-dom": ">= 15.3.1",
"react-redux": ">= 4.4.5",
"redux": ">= 3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.17.0",
"babel-preset-focus": "^0.6.1",
"chai": "^3.5.0",
"chai-subset": "^1.3.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"i18next": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.15.0",
"material-design-lite": "^1.2.1",
"mocha": "^3.0.2",
"node-sass": "^3.4.2",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-scripts": "0.2.3",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^3.2.3",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0"
},
"scripts": {
"start": "react-scripts start",
"build-prod": "react-scripts build",
"prepublish": "npm run build-lib",
"build-lib": "node node_modules/babel-preset-focus/babelify.js && npm run copy-sass",
"eject": "react-scripts eject",
"test": "mocha src/**/__tests__/**.js",
"test:watch": "mocha src/**/__tests__/**.js --watch",
"copy-sass": "cd src && find . -name *.scss | xargs tar cvf - | tar xfp - -C ../"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}