-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.08 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
{
"name": "todo-list-react",
"version": "1.0.0",
"description": "Simple 'To Do' list built with JSPM, System.js and React.",
"author": "Lee Powell <[email protected]> (https://leepowell.co.uk/)",
"license": "MIT",
"scripts": {
"server:dev": "NODE_ENV=development node scripts/server.js",
"server:dist": "NODE_ENV=production node scripts/server.js",
"jspm": "jspm bundle app .tmp/app.bundle.js --minify --skip-source-maps",
"usemin": "usemin src/index.html -d .tmp -o dist/index.html",
"uglify": "uglifyjs .tmp/scripts.js .tmp/app.bundle.js -o dist/scripts.js",
"lint": "eslint src --cache",
"test": "echo \"RUN TEST HERE\"",
"mkdirs": "mkdirp .tmp dist",
"clean": "npm run clean:tmp -s && npm run clean:dist",
"clean:tmp": "rimraf .tmp",
"clean:dist": "rimraf dist",
"prebuild": "npm run clean -s && npm run test -s && npm run mkdirs -s",
"prebuild:js": "npm run lint -s",
"build": "npm run build:html -s && npm run build:js -s && npm run build:css -s",
"build:js": "npm run jspm -s && npm run usemin -s && npm run uglify -s",
"build:css": "cp .tmp/styles.css dist/styles.css",
"build:html": "npm run usemin -s",
"postbuild": "npm run clean:tmp -s",
"postinstall": "jspm install",
"prepublish": "npm run build"
},
"devDependencies": {
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"install": "^0.1.8",
"jspm": "^0.16.13",
"mkdirp": "^0.5.1",
"npm": "^3.3.9",
"rimraf": "^2.4.3",
"serve-static": "^1.10.0",
"uglify-js": "^2.5.0",
"usemin-cli": "0.0.7"
},
"jspm": {
"directories": {
"baseURL": "src"
},
"dependencies": {
"bootstrap": "github:twbs/bootstrap@^3.3.5",
"lodash": "npm:lodash@^3.10.1",
"node-uuid": "npm:node-uuid@^1.4.3",
"react": "npm:react@^0.14.0",
"react-time": "npm:react-time@^4.0.0",
"store": "npm:store@^1.3.17"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}