-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.52 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
{
"name": "cria",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-node-env-inline": "6.8.0",
"cria-scripts": "0.0.x",
"cross-env": "^4.0.0",
"enzyme": "^2.7.1",
"glob": "^7.1.1",
"jest-cli": "^19.0.2",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.1",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.5.4",
"react-scripts": "0.9.5",
"react-test-renderer": "^15.5.4",
"redux-immutable-state-invariant": "^2.0.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"i18next": "^8.0.0",
"i18next-xhr-backend": "^1.3.0",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-i18next": "^3.1.0",
"react-redux": "^5.0.2",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"scripts": {
"build-css": "cria-scripts build-css",
"build-icons": "cria-scripts build-icons src/components/common/Icon/assets",
"build-i18n": "cria-scripts build-i18n",
"build-static": "npm-run-all -p build-css build-icons build-i18n",
"watch-css": "npm run build-css && cria-scripts watch-less",
"watch-icons": "npm run build-icons && cria-scripts watch-icons",
"watch-i18n": "cria-scripts watch-i18n",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-i18n watch-css watch-icons start-js",
"build": "npm run build-static && react-scripts build",
"eject": "react-scripts eject",
"test": "rimraf .compiled && react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage --collectCoverageFrom=src/**/!(*.svg).js",
"compile-js:debug": "cross-env NODE_ENV=test ./node_modules/babel-cli/bin/babel.js src --out-dir .compiled --no-babelrc --source-maps map --presets=react-app,jest --plugins=transform-node-env-inline",
"compile-css:debug": "npm run build-css",
"compile-icons:debug": "npm run build-icons",
"copy-static:debug": "node scripts/copy-static-files.js src .compiled",
"precompile:debug": "npm-run-all -p compile-css:debug compile-icons:debug",
"compile:debug": "npm-run-all copy-static:debug compile-js:debug",
"pretest:debug": "npm run compile:debug",
"test:debug": "node --debug-brk --no-lazy ./node_modules/jest-cli/bin/jest.js --config=./config/jest/jestDebugConfig.json"
},
"i18n": {
"lngs": [
"en-US",
"en-GB",
"es-MX"
],
"removeUnusedKeys": true,
"defaultValue": "_NOT_TRANSLATED_",
"ns": [
"app",
"todo"
]
}
}