-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.17 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
{
"name": "react-webpack-css-modules-typescript-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config=jest.config.json --no-cache",
"test:w": "jest --config=jest.config.json --watch",
"clean": "rimraf dist",
"copy": "cpx \"public/**/*\" dist",
"copy:w": "cpx \"public/**/*\" dist --no-initial",
"webpack": "webpack",
"webpack:w": "webpack --watch",
"webpack:p": "webpack -p --env.production",
"build": "run-s clean copy webpack",
"build:p": "run-s clean copy webpack:p",
"serve": "lite-server",
"start": "run-s clean copy && run-p copy:w webpack:w serve",
"deploy": "npm run build:p && rimraf node_modules/gh-pages/.cache && gh-pages -d dist"
},
"homepage": "https://ovrmrw.github.io/react-webpack-css-modules-typescript-example",
"keywords": [],
"author": "Tomohiro Noguchi @ovrmrw",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^2.7.4",
"@types/jest": "^18.1.1",
"@types/node": "^7.0.5",
"@types/react": "^15.0.9",
"@types/react-css-modules": "^3.7.5",
"@types/react-dom": "^0.14.23",
"@types/webpack": "^2.2.5",
"awesome-typescript-loader": "^3.0.4-rc.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-css-modules": "^2.2.0",
"babel-plugin-transform-react-jsx": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"compression-webpack-plugin": "^0.3.2",
"core-js": "^2.4.1",
"cpx": "^1.5.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"lite-server": "^2.2.2",
"npm-run-all": "^4.0.1",
"postcss-cssnext": "^2.9.0",
"postcss-loader": "^1.3.0",
"postcss-modules-values": "^1.2.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-css-modules": "^4.1.0",
"react-dom": "^15.4.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"ts-jest": "^18.0.3",
"tslib": "^1.5.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"webpack": "^2.2.1"
}
}